home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_iwatc.c < prev    next >
C/C++ Source or Header  |  1995-09-12  |  4KB  |  155 lines

  1. /* Copyright (C) 1991, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_iwatc.c */
  20. /* Intel processor, Watcom C-specific routines for Ghostscript */
  21. #include "dos_.h"
  22. #include <fcntl.h>
  23. #include <signal.h>
  24. #include <stdlib.h>
  25. #include "stat_.h"
  26. #include "string_.h"
  27. #include "gx.h"
  28. #include "gp.h"
  29.  
  30. /* Library routines not declared in a standard header */
  31. extern char *getenv(P1(const char *));
  32.  
  33. /* Define a substitute for stdprn (see below). */
  34. private FILE *gs_stdprn;
  35.  
  36. /* Forward declarations */
  37. private void handle_FPE(P1(int));
  38.  
  39. /* Do platform-dependent initialization. */
  40. void
  41. gp_init(void)
  42. {    gs_stdprn = 0;
  43.     /* Set up the handler for numeric exceptions. */
  44.     signal(SIGFPE, handle_FPE);
  45.     gp_init_console();
  46. }
  47.  
  48. /* Trap numeric exceptions.  Someday we will do something */
  49. /* more appropriate with these. */
  50. private void
  51. handle_FPE(int sig)
  52. {    eprintf("Numeric exception:\n");
  53.     exit(1);
  54. }
  55.  
  56. /* Do platform-dependent cleanup. */
  57. void
  58. gp_exit(int exit_status, int code)
  59. {
  60. }
  61.  
  62. /* Exit the program. */
  63. void
  64. gp_do_exit(int exit_status)
  65. {    exit(exit_status);
  66. }
  67.  
  68. /* ------ Printer accessing ------ */
  69.  
  70. /* Open a connection to a printer.  A null file name means use the */
  71. /* standard printer connected to the machine, if any. */
  72. /* Return NULL if the connection could not be opened. */
  73. extern void gp_set_printer_binary(P2(int, int));
  74. FILE *
  75. gp_open_printer(char *fname, int binary_mode)
  76. {    FILE *pfile;
  77.     if ( strlen(fname) == 0 || !strcmp(fname, "PRN") )
  78.     {    if ( !binary_mode )
  79.             return stdprn;
  80.         if ( gs_stdprn == 0 )
  81.         {    /* We have to effectively reopen the printer, */
  82.             /* because the Watcom library does \n -> \r\n */
  83.             /* substitution on the stdprn stream. */
  84.             int fno = dup(fileno(stdprn));
  85.             setmode(fno, O_BINARY);
  86.             gs_stdprn = fdopen(fno, "wb");
  87.         }
  88.         pfile = gs_stdprn;
  89.     }
  90.     else
  91.     {    pfile = fopen(fname, (binary_mode ? "wb" : "w"));
  92.         if ( pfile == NULL )
  93.             return NULL;
  94.     }
  95.     gp_set_printer_binary(fileno(pfile), binary_mode);
  96.     return pfile;
  97. }
  98.  
  99. /* Close the connection to the printer. */
  100. void
  101. gp_close_printer(FILE *pfile, const char *fname)
  102. {    if ( pfile != stdprn )
  103.         fclose(pfile);
  104.     if ( pfile == gs_stdprn )
  105.         gs_stdprn = 0;
  106. }
  107.  
  108. /* ------ File naming and accessing ------ */
  109.  
  110. /* Create and open a scratch file with a given name prefix. */
  111. /* Write the actual file name at fname. */
  112. FILE *
  113. gp_open_scratch_file(const char *prefix, char *fname, const char *mode)
  114. {    /* Unfortunately, Watcom C doesn't provide mktemp, */
  115.     /* so we have to simulate it ourselves. */
  116.     char *temp;
  117.     struct stat fst;
  118.     char *end;
  119.     if ( (temp = getenv("TEMP")) == NULL )
  120.         *fname = 0;
  121.     else
  122.     {    char last = '\\';
  123.         strcpy(fname, temp);
  124.         /* Prevent X's in path from being converted by mktemp. */
  125.         for ( temp = fname; *temp; temp++ )
  126.             *temp = last = tolower(*temp);
  127.         switch ( last )
  128.         {
  129.         default:
  130.             strcat(fname, "\\");
  131.         case ':': case '\\':
  132.             ;
  133.         }
  134.     }
  135.     strcat(fname, prefix);
  136.     strcat(fname, "AA.AAA");
  137.     end = fname + strlen(fname) - 1;
  138.     while ( stat(fname, &fst) == 0 )
  139.        {    char *inc = end;
  140.         while ( *inc == 'Z' || *inc == '.' )
  141.            {    if ( *inc == 'Z' ) *inc = 'A';
  142.             inc--;
  143.             if ( end - inc == 6 ) return 0;
  144.            }
  145.         ++*inc;
  146.        }
  147.     return fopen(fname, mode);
  148. }
  149.  
  150. /* Open a file with the given name, as a stream of uninterpreted bytes. */
  151. FILE *
  152. gp_fopen(const char *fname, const char *mode)
  153. {    return fopen(fname, mode);
  154. }
  155.